home *** CD-ROM | disk | FTP | other *** search
- /*
- cvdemo.cpp
-
- "main()" for cvdemo program
-
- C++/Views 2.0 Demo
- Copyright (c) 1992, by Liant Software Corp.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #include "notifier.h"
- #include "cvdemovw.h"
-
- char *CTWindow = __FILE__;
-
- int cvmain(int ac, char **av)
- {
- /* create the main window for the demo (see cvdemovw.cpp) */
- DemoAppView *v = new DemoAppView();
-
- /* show the main window */
- v->show();
-
- /* tell the notifier to start processig events */
- notifier->start();
-
- delete v;
- return(TRUE);
- }
-